Don't return a value from a void function
authorMatthias Clasen <mclasen@redhat.com>
Sun, 17 Jul 2011 22:05:17 +0000 (18:05 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 17 Jul 2011 22:05:17 +0000 (18:05 -0400)
Reported in bug 654720, patch by Brian Cameron.

gdk/gdkwindow.c

index 6700f673c576941cff520145dc37333df349b8c8..71405f3bd33334a59b5b3386ebf0b066e2e7d916 100644 (file)
@@ -10702,7 +10702,7 @@ gdk_drag_begin_for_device (GdkWindow     *window,
 void
 gdk_test_render_sync (GdkWindow *window)
 {
-  return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->sync_rendering (window);
+  GDK_WINDOW_IMPL_GET_CLASS (window->impl)->sync_rendering (window);
 }
 
 /**